home *** CD-ROM | disk | FTP | other *** search
/ C & C++ Multimedia Cyber Classroom / C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso / cpphtp2 / code.jar / code / ch12 / fig12_01.txt next >
Text File  |  1998-02-27  |  203b  |  9 lines

  1. 1   template< class T >
  2. 2   void printArray( const T *array, const int count )
  3. 3   {
  4. 4      for ( int i = 0; i < count; i++ )
  5. 5         cout << array[ i ] << " ";
  6. 6   
  7. 7      cout << endl;
  8. 8   }
  9.